home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / etc / fstab.orig < prev    next >
Text File  |  2006-01-22  |  1KB  |  29 lines

  1. # /etc/fstab: static file system information.
  2. # $Header: /home/cvsroot/gentoo-src/rc-scripts/etc/fstab,v 1.14 2003/10/13 20:03:38 azarah Exp $
  3. #
  4. # noatime turns off atimes for increased performance (atimes normally aren't
  5. # needed; notail increases performance of ReiserFS (at the expense of storage
  6. # efficiency).  It's safe to drop the noatime options if you want and to 
  7. # switch between notail and tail freely.
  8.  
  9. # <fs>              <mountpoint>    <type>      <opts>              <dump/pass>
  10.  
  11. # NOTE: If your BOOT partition is ReiserFS, add the notail option to opts.
  12. #/dev/BOOT        /boot        ext2        noauto,noatime        1 1
  13. #/dev/ROOT        /        xfs        noatime            0 0
  14. #/dev/SWAP        none        swap        sw            0 0
  15. #/dev/cdrom        /mnt/cdrom    iso9660        noauto,ro        0 0
  16. ##/dev/fd0        /mnt/floppy    auto        noauto            0 0
  17.  
  18. # NOTE: The next line is critical for boot!
  19. #none            /proc        proc        defaults        0 0
  20.  
  21. ## glibc 2.2 and above expects tmpfs to be mounted at /dev/shm for
  22. # POSIX shared memory (shm_open, shm_unlink). 
  23. # (tmpfs is a dynamically expandable/shrinkable ramdisk, and will
  24. #  use almost no memory if not populated with files)
  25. # Adding the following line to /etc/fstab should take care of this:
  26.  
  27. #none            /dev/shm    tmpfs        defaults        0 0
  28.  
  29.